/*
 * [作品名]
 * Copyright (c) [年] [あなたの名前]
 * Licensed under CC BY-SA 4.0 or later
 * https://creativecommons.org

 */

body {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
  }

  h1, h2 {
    color: #333;
  }

  input, textarea {
    width: 100%;
    padding: 0.6em;
    margin: 0.5em 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }

  button {
    padding: 0.5em 1em;
    font-size: 1em;
    background-color: #2e86de;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  button:hover {
    background-color: #1e5fab;
  }

  #status {
    margin-top: 1em;
    color: green;
  }

  ul#posts {
    list-style: none;
    padding: 0;
  }

  ul#posts li {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
  }